home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 27 / CDROM27.iso / share / progra / mai / Controls, TextBox - Automatically highlighting contents on GotFocus() < prev    next >
Encoding:
Text File  |  1997-07-15  |  193 b   |  7 lines

  1. 'Description: Automatic selection of the contents
  2. '             of a text box when it gets focus.
  3.  
  4. 'Sub Text1_GotFocus ()
  5. Text1.SelStart = 0
  6. Text1.SelLength = 65535   'max length
  7. 'End Sub